home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Diversos / snowball.swf / scripts / DefineButton2_284 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2006-06-13  |  1.2 KB  |  25 lines

  1. on(release){
  2.    _root.savefile = SharedObject.getLocal("ags");
  3.    _root.savefile.data.playername = _root.playername;
  4.    _root.savefile.data.ballspeed = _root.ballspeed;
  5.    _root.savefile.data.recordweight = _root.recordweight;
  6.    _root.savefile.data.noofchampionships = _root.noofchampionships;
  7.    _root.savefile.data.worldrecord = _root.worldrecord;
  8.    _root.savefile.data.nationalrecord = _root.nationalrecord;
  9.    _root.savefile.data.regionalrecord = _root.regionalrecord;
  10.    _root.savefile.data.hometownrecord = _root.hometownrecord;
  11.    _root.savefile.data.backyardrecord = _root.backyardrecord;
  12.    _root.savefile.data.n_world = _root.n_world;
  13.    _root.savefile.data.n_national = _root.n_national;
  14.    _root.savefile.data.n_regional = _root.n_regional;
  15.    _root.savefile.data.n_hometown = _root.n_hometown;
  16.    _root.savefile.data.n_backyard = _root.n_backyard;
  17.    _root.savefile.data.worldchampion = _root.worldchampion;
  18.    _root.savefile.data.nationalchampion = _root.nationalchampion;
  19.    _root.savefile.data.regionalchampion = _root.regionalchampion;
  20.    _root.savefile.data.hometownchampion = _root.hometownchampion;
  21.    _root.savefile.data.backyardchampion = _root.backyardchampion;
  22.    _root.savefile.flush(80000);
  23.    saved.play(2);
  24. }
  25.